+2004-02-13 Federico Mena Quintero <federico@ximian.com>
+
+ * gtk/gtkfilesystemunix.c (gtk_file_system_unix_add_bookmark):
+ Duh, duh, duh! Don't bail out if the bookmarks file doesn't exist
+ the very first time you try to save one.
+
2004-02-13 Federico Mena Quintero <federico@ximian.com>
Fix #129020.
+2004-02-13 Federico Mena Quintero <federico@ximian.com>
+
+ * gtk/gtkfilesystemunix.c (gtk_file_system_unix_add_bookmark):
+ Duh, duh, duh! Don't bail out if the bookmarks file doesn't exist
+ the very first time you try to save one.
+
2004-02-13 Federico Mena Quintero <federico@ximian.com>
Fix #129020.
+2004-02-13 Federico Mena Quintero <federico@ximian.com>
+
+ * gtk/gtkfilesystemunix.c (gtk_file_system_unix_add_bookmark):
+ Duh, duh, duh! Don't bail out if the bookmarks file doesn't exist
+ the very first time you try to save one.
+
2004-02-13 Federico Mena Quintero <federico@ximian.com>
Fix #129020.
+2004-02-13 Federico Mena Quintero <federico@ximian.com>
+
+ * gtk/gtkfilesystemunix.c (gtk_file_system_unix_add_bookmark):
+ Duh, duh, duh! Don't bail out if the bookmarks file doesn't exist
+ the very first time you try to save one.
+
2004-02-13 Federico Mena Quintero <federico@ximian.com>
Fix #129020.
+2004-02-13 Federico Mena Quintero <federico@ximian.com>
+
+ * gtk/gtkfilesystemunix.c (gtk_file_system_unix_add_bookmark):
+ Duh, duh, duh! Don't bail out if the bookmarks file doesn't exist
+ the very first time you try to save one.
+
2004-02-13 Federico Mena Quintero <federico@ximian.com>
Fix #129020.
GSList *l;
char *uri;
gboolean result;
+ GError *err;
- if (!bookmark_list_read (&bookmarks, error))
- return FALSE;
+ err = NULL;
+ if (!bookmark_list_read (&bookmarks, &err) && err->code != G_FILE_ERROR_NOENT)
+ {
+ g_propagate_error (error, err);
+ g_error_free (err);
+ return FALSE;
+ }
result = FALSE;